home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / about2 / about.pas < prev    next >
Pascal/Delphi Source File  |  1995-12-22  |  1KB  |  63 lines

  1. unit About;
  2.  
  3. { This is a dialog wrapped in the ABOUTDLG unit
  4.   not intended to be used as a standalone unit.
  5.  
  6.   Do not install this unit, install ABOUTDLG.
  7.   }
  8.  
  9. interface
  10.  
  11. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
  12.   Buttons, ExtCtrls;
  13.  
  14. type
  15.   TAboutBox = class(TForm)
  16.     Panel1: TPanel;
  17.     ProgramIcon: TImage;
  18.     ProductName: TLabel;
  19.     Version: TLabel;
  20.     Copyright: TLabel;
  21.     Comments: TLabel;
  22.     Button1: TButton;
  23.     Label1: TLabel;
  24.     Label2: TLabel;
  25.     WinVersion: TLabel;
  26.     DosVersion: TLabel;
  27.     Label3: TLabel;
  28.     Coprocessor: TLabel;
  29.     Label4: TLabel;
  30.     CPU: TLabel;
  31.     Label5: TLabel;
  32.     FreeMemory: TLabel;
  33.     Label6: TLabel;
  34.     FreeResources: TLabel;
  35.     Label8: TLabel;
  36.     UserName: TLabel;
  37.     Label10: TLabel;
  38.     CompanyName: TLabel;
  39.     Label9: TLabel;
  40.     FreeDisk: TLabel;
  41.     procedure Button1Click(Sender: TObject);
  42.   private
  43.     { Private declarations }
  44.   public
  45.     { Public declarations }
  46.   end;
  47.  
  48. var
  49.   AboutBox: TAboutBox;
  50.  
  51. implementation
  52.  
  53. {$R *.DFM}
  54.  
  55.  
  56. procedure TAboutBox.Button1Click(Sender: TObject);
  57. begin
  58.      Close
  59. end;
  60.  
  61. end.
  62.  
  63.